home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-21 / dvblank.zip / README < prev    next >
Text File  |  1991-03-12  |  1KB  |  36 lines

  1. BLANK.COM Version 1.01, a simpel screen blanker for DESQview.
  2.  
  3.       DESQview is a registered trademark of Quarterdeck Office Systems
  4.  
  5.       Saesoft International,         [NMS] Netherlands Message Centre
  6.       Post Office Box: 9179,         Telex: Saesoft, 20010 PMS NL
  7.       3007 AD Rotterdam Holland.     Telefax: Saesoft, +31 (10)4113888
  8.       Phone: +31 (10)4795892         PostBank PSTB NL 2A  5506405
  9.  
  10. Copy the files BLANK.COM and SB-PIF.DVP to your \DV directory and add the
  11. program with the keys SB to your menu, this is all, blank.com will hide the
  12. cursor and DESQview will clear the screen for you, strike any key to exit the
  13. blank program.
  14.  
  15. What does it do ? the code;
  16.  
  17. MOV    AH,01
  18. MOV    CH,32        ;this will hide the cursor
  19. XOR    CL,CL
  20. INT    10
  21. XOR    AX,AX        ;here we wait for a key to be pressed
  22. INT    16
  23. INT    20        ;here we exit blank.com
  24.  
  25. At start DESQview always clears the screen, blank mearly hides the cursor and
  26. waits for a key to be pressed...
  27.  
  28. BLANK2.COM is about the same as blank.com, but it does not wait for a key to
  29. be pressed, you must kill or close the window first.
  30.  
  31. BLANK3.COM is about the same as blank.com, but it waits for the EScape key to
  32. be pressed, then it will close the window.
  33.  
  34.  
  35. *** DVBLANK.ZIP is hereby moved to the public domain, no copyright. ***
  36.